home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / Tutorial / Cookbook / 09.form / MyObject.m < prev    next >
Text File  |  1992-12-19  |  320b  |  25 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "MyObject.h"
  5. #import <appkit/Form.h>
  6.  
  7. @implementation MyObject
  8.  
  9. - setMyText:anObject
  10. {
  11.     myText = anObject;
  12.     return self;
  13. }
  14.  
  15. - printText:sender
  16. {
  17.     const char *strptr;
  18.     strptr = [myText stringValue];
  19.     printf("String = %s\n", strptr);
  20.     return self;
  21. }
  22.  
  23.  
  24. @end
  25.